Skip to main content

TypedQueryData<QueryModel, From>

Assembly: ServiceStack.dll
View Source
Declaration
public class TypedQueryData<QueryModel, From> : ITypedQueryData

Properties

QueryType

View Source
Declaration
public Type QueryType { get; }

FromType

View Source
Declaration
public Type FromType { get; }

Methods

CreateQuery(IQueryDataSource)

View Source
Declaration
public IDataQuery CreateQuery(IQueryDataSource db)
Returns

ServiceStack.IDataQuery

Parameters
TypeName
ServiceStack.IQueryDataSourcedb

AddToQuery(IDataQuery, IQueryData, Dictionary<String, String>, IAutoQueryDataOptions)

View Source
Declaration
public IDataQuery AddToQuery(IDataQuery q, IQueryData request, Dictionary<string, string> dynamicParams, IAutoQueryDataOptions options = null)
Returns

ServiceStack.IDataQuery

Parameters
TypeName
ServiceStack.IDataQueryq
ServiceStack.IQueryDatarequest
System.Collections.Generic.Dictionary<System.String,System.String>dynamicParams
ServiceStack.IAutoQueryDataOptionsoptions

Execute<Into>(IQueryDataSource, IDataQuery)

View Source
Declaration
public QueryResponse<Into> Execute<Into>(IQueryDataSource db, IDataQuery query)
Returns

ServiceStack.QueryResponse<T>

Parameters
TypeName
ServiceStack.IQueryDataSourcedb
ServiceStack.IDataQueryquery
Type Parameters
  • Into

Implements